home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / sys⁄times.h < prev    next >
Text File  |  1992-09-11  |  130b  |  11 lines

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. struct tms {
  6.   clock_t tms_utime;
  7.   clock_t tms_stime;
  8.   clock_t tms_cutime;
  9.   clock_t tms_cstime;
  10. };
  11.